.profile {
    position: relative;
    font-family: "Manrope";
}

.profile__banner {
    position: relative;
}

.profile__banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile__banner-greeting {
    position: absolute;
    top: 35px;
    left: 25px;
    font-family: "Bounded";
    color: #F4C86F;
    font-size: 15px;
}

.profile__banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.jury-panel {
    padding: 40px 25px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.jury-panel__title {
    color: #292929;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Bounded', sans-serif;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
}

.jury-panel__warning {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    max-width: 420px;
    color: #292929;
}

.jury-panel__warning-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.jury-panel__warning-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #292929;
    line-height: 1.5;
    margin: 0;
}

.jury-panel__warning-text strong {
    font-weight: 700;
}

.jury-panel__dates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.jury-panel__date-btn {
    width: 144px;
    height: 38px;
    border: 1px solid #E2E2E2;
    background: none;
    border-radius: 4px;
    color: #E2E2E2;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: not-allowed;
    pointer-events: none;
}

.jury-panel__date-btn--active {
    background: #E69E5F;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
}

.jury-panel__button {
    width: 336px;
    height: 50px;
    background: #E69E5F;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.jury-panel__button:hover {
    color: #E69E5F;
    border: 1px solid #E69E5F;
}

.icon-info {
    fill: none;
    stroke: #292929;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .jury-panel__date-btn {
        width: 88px;
    }
}